home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / Illustrator 6.0 SDK r1 Mac / AI Plugin Interface / AIGroup.h < prev    next >
Text File  |  1995-12-21  |  1KB  |  80 lines

  1. /**
  2.  
  3.     AIGroup.h
  4.     Copyright (c) 1995 Adobe Systems Incorporated.
  5.     All Rights Reserved
  6.  
  7.     Adobe Illustrator 6.0 Group Object Suite.
  8.  
  9.  **/
  10.  
  11. #ifndef __AIGroup__
  12. #define __AIGroup__
  13.  
  14.  
  15. /*******************************************************************************
  16.  **
  17.  **    Imports
  18.  **
  19.  **/
  20.  
  21. #include "AITypes.h"
  22. #include "AIArt.h"
  23.  
  24.  
  25. #if Macintosh
  26.     #ifdef __cplusplus
  27.     extern "C" {
  28.     #endif
  29.     
  30.     #if PRAGMA_ALIGN_SUPPORTED
  31.     #pragma options align=mac68k
  32.     #endif
  33.     
  34.     #if PRAGMA_IMPORT_SUPPORTED
  35.     #pragma import on
  36.     #endif
  37. #endif
  38.  
  39.  
  40. /*******************************************************************************
  41.  **
  42.  ** Constants
  43.  **
  44.  **/
  45.  
  46. #define kAIGroupSuite        "AI Group Suite"
  47. #define kAIGroupVersion        2
  48.  
  49.  
  50. /*******************************************************************************
  51.  **
  52.  **    Suite
  53.  **
  54.  **/
  55.  
  56. typedef struct {
  57.  
  58.     MACPASCAL FXErr (*GetGroupClipped) ( AIArtHandle group, Boolean *clipped );
  59.     MACPASCAL FXErr (*SetGroupClipped) ( AIArtHandle group, Boolean clipped );
  60.  
  61. } AIGroupSuite;
  62.  
  63.  
  64. #if Macintosh
  65.     #if PRAGMA_IMPORT_SUPPORTED
  66.     #pragma import off
  67.     #endif
  68.     
  69.     #if PRAGMA_ALIGN_SUPPORTED
  70.     #pragma options align=reset
  71.     #endif
  72.     
  73.     #ifdef __cplusplus
  74.     }
  75.     #endif
  76. #endif
  77.  
  78.  
  79. #endif
  80.